referential$68140$ - traduzione in greco
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

referential$68140$ - traduzione in greco

SITUATION WHERE ALL DATA REFERENCES ARE VALID
Declarative Referential Integrity; Referential Integrity; Inclusion dependency; Referential constraint; Inclusion dependencies; Declarative referential integrity
  • Eat the Rich]]" referred to this artist. With referential integrity enforced, this would not have been possible.

referential      
adj. αναφερόμενος, αναφορικός
refer to         
  • The [[triangle of reference]], from the influential book ''[[The Meaning of Meaning]]'' (1923) by [[C. K. Ogden]] and [[I. A. Richards]]
SPATIAL, TEMPORAL, CAUSAL, DEPENDENT, LOGICAL OR SEMANTIC RELATION DEFINED WITHIN A COLLECTION OF OBJECTS, WITH WHICH ONE OF THESE OBJECTS DESIGNATES, OR ACTS AS A BASE MEANS BY WHICH TO CONNECT TO, OR LINK TO SOME OTHER OBJECTS OF THE COLLECTION
References; Refrences; Referential; Unreferenced; Character reference; Referenced; Work Reference; Character references; Refer to; Referring; Bibliographical reference
παραπέμπω

Definizione

referential integrity
<database> A collection of properties which should be possessed by data in a relational database. For example, in a database of family members, if we enter A as a spouse of B, we should also enter B as a spouse of A. Similarly, if we remove one end of the relationship we should also remove the other. (1998-02-18)

Wikipedia

Referential integrity

Referential integrity is a property of data stating that all its references are valid. In the context of relational databases, it requires that if a value of one attribute (column) of a relation (table) references a value of another attribute (either in the same or a different relation), then the referenced value must exist.

For referential integrity to hold in a relational database, any column in a base table that is declared a foreign key can only contain either null values or values from a parent table's primary key or a candidate key. In other words, when a foreign key value is used it must reference a valid, existing primary key in the parent table. For instance, deleting a record that contains a value referred to by a foreign key in another table would break referential integrity. Some relational database management systems (RDBMS) can enforce referential integrity, normally either by deleting the foreign key rows as well to maintain integrity, or by returning an error and not performing the delete. Which method is used may be determined by a referential integrity constraint defined in a data dictionary.

The adjective 'referential' describes the action that a foreign key performs, 'referring' to a linked column in another table. In simple terms, 'referential integrity' guarantees that the target 'referred' to will be found. A lack of referential integrity in a database can lead relational databases to return incomplete data, usually with no indication of an error.